Adjust comment
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Wed, 20 Sep 2006 20:46:33 +0000 (20:46 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Wed, 20 Sep 2006 20:46:33 +0000 (20:46 +0000)
lisp/ChangeLog
lisp/subr.el

index d688210d2a710afda59ff4847b2cda2199ad2500..795172af4d0519747e98383716c97b966f7acc22 100644 (file)
@@ -11,6 +11,8 @@
        * lpr.el (lpr-page-header-switches): Insert `*' at beginning of comment
        to become an option.
 
+       * subr.el (version-regexp-alist): Adjust comment.
+
 2006-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
index 88af6f0886921b00cb3c6021570e495287ededaf..daaacaf75a1f1e5354bdea8fade3cd545eee0e92 100644 (file)
@@ -3106,8 +3106,8 @@ Usually the separator is \".\", but it can be any other string.")
 
 (defvar version-regexp-alist
   '(("^[-_+ ]?a\\(lpha\\)?$"   . -3)
-    ("^[-_+]$" . -3)   ; treat "1.2.3-20050920" and "1.2-3" as alpha releases
-    ("^[-_+ ]cvs$" . -3)       ; treat "1.2.3-CVS" as alpha release
+    ("^[-_+]$"                 . -3)   ; treat "1.2.3-20050920" and "1.2-3" as alpha releases
+    ("^[-_+ ]cvs$"             . -3)   ; treat "1.2.3-CVS" as alpha release
     ("^[-_+ ]?b\\(eta\\)?$"    . -2)
     ("^[-_+ ]?\\(pre\\|rc\\)$" . -1))
   "*Specify association between non-numeric version part and a priority.